Autogenerated HTML docs for v2.10.0-297-gf6727 
diff --git a/RelNotes/2.10.1.txt b/RelNotes/2.10.1.txt new file mode 100644 index 0000000..75c07e1 --- /dev/null +++ b/RelNotes/2.10.1.txt 
@@ -0,0 +1,33 @@ +Git v2.10.1 Release Notes +========================= + +Fixes since v2.10 +----------------- + + * Clarify various ways to specify the "revision ranges" in the + documentation. + + * "diff-highlight" script (in contrib/) learned to work better with + "git log -p --graph" output. + + * The test framework left the number of tests and success/failure + count in the t/test-results directory, keyed by the name of the + test script plus the process ID. The latter however turned out not + to serve any useful purpose. The process ID part of the filename + has been removed. + + * Having a submodule whose ".git" repository is somehow corrupt + caused a few commands that recurse into submodules loop forever. + + * "git symbolic-ref -d HEAD" happily removes the symbolic ref, but + the resulting repository becomes an invalid one. Teach the command + to forbid removal of HEAD. + + * A test spawned a short-lived background process, which sometimes + prevented the test directory from getting removed at the end of the + script on some platforms. + + * Update a few tests that used to use GIT_CURL_VERBOSE to use the + newer GIT_TRACE_CURL. + +Also contains minor documentation updates and code clean-ups. 
diff --git a/RelNotes/2.11.0.txt b/RelNotes/2.11.0.txt index f4fa57e..2be6ef1 100644 --- a/RelNotes/2.11.0.txt +++ b/RelNotes/2.11.0.txt 
@@ -48,6 +48,17 @@  sequencer.c files so that more helper functions in it can be used  by callers that want to handle error conditions themselves.   + * "git am" has been taught to make an internal call to "git apply"'s + innards without spawning the latter as a separate process. + + * The ref-store abstraction was introduced to the refs API so that we + can plug in different backends to store references. + + * The "unsigned char sha1[20]" to "struct object_id" conversion + continues. Notable changes in this round includes that ce->sha1, + i.e. the object name recorded in the cache_entry, turns into an + object_id. +    Also contains various documentation updates and code clean-ups.